.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.681);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: popup-fade 0.6s ease-in-out;
  border-radius: 28px;
}
.sorme-v4-popup-content {
  background-color: #37493b;
}

.popup-header {
  padding: 20px 16px;
}
.popup-header p {
  font-size: 32px;
  font-weight: 700;
  color: #272727;
  margin-top: 20px;
}
.sorme-v4-popup-content .popup-header p {
  color: #ceb272;
}

.popup-header span {
  font-size: 16px;
  font-weight: 400;
  color: #727272;
  margin-top: 4px;
}
.sorme-v4-popup-content .popup-header span {
  color: #ceb272;
}

.popup-header__image-holder {
  width: 40px;
  height: 40px;
  box-shadow: 0px 2px 8px 0px #233b600f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.popup-image {
  height: 250px !important;
  position: relative;
  right: 16px;
  display: flex;
  justify-content: space-between;
}
.popup-image__holder {
  width: 65%;
  overflow: hidden;
}
.popup-image__holder img {
  width: 100%;
  height: 92%;
  object-fit: cover;
  border-radius: 13px;
}
.verticalSwiper {
  width: 35%;
  height: 240px !important;
}
.prevEl {
  position: absolute;
  z-index: 999;
  width: 25px;
  height: 25px;
  left: 9vw;
  top: -295px;
  transform: rotate(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.nextEl {
  position: absolute;
  z-index: 999;
  width: 25px;
  height: 25px;
  left: 9vw;
  top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nextEl img,
.prevEl img {
  width: 60%;
}

.verticalSwiper .swiper-slide {
  width: 64px !important;
  height: 66px !important;
  margin: 0 auto;
  /* padding: 0 !important; */
  border-radius: 13px;
  /* overflow: hidden; */
}
.verticalSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-information {
  margin-top: 20px;
  padding: 5px 16px 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price {
  align-self: flex-end;
  font-weight: 700;
  font-size: 24px;
  color: #323232;
}
.sorme-v4-popup-content .price {
  color: #ceb272;
} 

.description {
  margin-bottom: 10px;
}

.description p {
  color: #323232;
  font-weight: 500;
  font-size: 16px;
}
.sorme-v4-popup-content .description p {
  color: #ceb272;
}

.description span {
  color: #727272;
  font-weight: 400;
  font-size: 14px;
}
.sorme-v4-popup-content .description span{
  color: #ceb272;
}

.food-details__video {
  display: flex;
  height: 30px;
  align-items: center;
  cursor: pointer;
  position: relative;
  right: 0;

  width: 40%;
  font-size: 14px;
  color: #323232;
  margin-bottom: 20px;
}
.food-details__video span {
  margin: 0;
}
.food-details__video img {
  margin: 0 0 0 10px;
}

.popup-information video {
  display: none;
  height: 200px;
  /* margin-bottom: 30px; */
  margin: 0 auto 30px !important;
}

@keyframes popup-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media screen and (max-height: 644px) {
  .popup-image {
    height: 215px;
  }
  .nextEl {
    margin-bottom: -5px;
  }
}

@media screen and (min-height: 602px) {
  .verticalSwiper {
    height: 410px;
  }
  .popup-image {
    overflow: hidden;
  }
}
